home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Die Ultimative Software-P…i Collection 1996 & 1997
/
Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso
/
p
/
pofo
/
readkey
/
test.pas
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1992-12-09
|
488 b
|
23 lines
{ Turbo Pascal 5.5 unit READKEY.TPU for ATARI Portfolio
(C)1992 RoTo Rostislav Tomes
TEST.PAS - simple program for testing READKEY.TPU
shows scan codes of keys or funcion keys
pressed on keyboard
}
Uses ReadKey;
Var ch:Char;
Begin
Repeat
ch:=ReadExtKey;
Write(Ord(ch):3);
If ch=#0
Then Begin
ch:=ReadExtKey;
Write(':',Ord(ch):3);
End;
WriteLn
Until ch=#27;
End.
ə